-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(steering-odometry): convert twist to steering angle #1288
fix(steering-odometry): convert twist to steering angle #1288
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1288 +/- ##
==========================================
+ Coverage 80.34% 80.36% +0.01%
==========================================
Files 105 105
Lines 9393 9391 -2
Branches 831 829 -2
==========================================
Hits 7547 7547
Misses 1570 1570
+ Partials 276 274 -2
Flags with carried forward coverage won't be shown. Click here to find out more.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes sense, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also, correct math is always correct
unless you do some crazy physics but oh well... :D
thank you!
(cherry picked from commit 50036e1)
(cherry picked from commit 50036e1)
(cherry picked from commit 50036e1) Co-authored-by: Rein Appeldoorn <[email protected]>
(cherry picked from commit 50036e1) Co-authored-by: Rein Appeldoorn <[email protected]>
The logic in this function was incorrect, if we divide by
0.
, the input of theatan
goes toinf
which should result inPI/2
instead of0.
. What should be handled instead arenan
values as an input of theatan
function that can happen if we input0./0.
.